home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / maestro / source / cdedit / msf.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-15  |  620 b   |  26 lines

  1. /*************************************************************
  2.  *                                                           *
  3.  *                     file: msf.h                           *
  4.  *                                                           *
  5.  *************************************************************/
  6.  
  7. /*
  8.  * Copyright (C) 1988, 1989 Sun Microsystems, Inc.
  9.  */
  10.  
  11. /* @(#)msf.h @(#)msf.h 1.2 89/11/14 Copyr 1989 Sun Microsystem. */
  12.  
  13. /* 
  14.  * This file contains the typedefs of msf data structure 
  15.  */
  16.  
  17. typedef struct msf {
  18.     int    min;
  19.     int    sec;
  20.     int    frame;
  21. } *Msf;
  22.  
  23. extern    Msf    init_msf();
  24. extern    Msf    diff_msf();
  25.  
  26.